home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PsL Monthly 1993 December
/
PSL Monthly Shareware CD-ROM (December 1993).iso
/
prgmming
/
dos
/
pascal
/
ovrobj.com
/
DEMO1.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1989-12-05
|
147 b
|
15 lines
{$O+,F+}
unit Demo1;
interface
procedure Write1;
implementation
procedure Write1;
begin
Writeln('Demo1 executing');
end;
end.